home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 September / PCWorld_2007-09_cd.bin / system / ntfs / ntfsundelete.exe / {app} / codecs.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2006-10-29  |  23KB  |  690 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. ''' codecs -- Python Codec Registry, API and helpers.
  5.  
  6.  
  7. Written by Marc-Andre Lemburg (mal@lemburg.com).
  8.  
  9. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  10.  
  11. '''
  12. import __builtin__
  13. import sys
  14.  
  15. try:
  16.     from _codecs import *
  17. except ImportError:
  18.     why = None
  19.     raise SystemError, 'Failed to load the builtin codecs: %s' % why
  20.  
  21. __all__ = [
  22.     'register',
  23.     'lookup',
  24.     'open',
  25.     'EncodedFile',
  26.     'BOM',
  27.     'BOM_BE',
  28.     'BOM_LE',
  29.     'BOM32_BE',
  30.     'BOM32_LE',
  31.     'BOM64_BE',
  32.     'BOM64_LE',
  33.     'BOM_UTF8',
  34.     'BOM_UTF16',
  35.     'BOM_UTF16_LE',
  36.     'BOM_UTF16_BE',
  37.     'BOM_UTF32',
  38.     'BOM_UTF32_LE',
  39.     'BOM_UTF32_BE',
  40.     'strict_errors',
  41.     'ignore_errors',
  42.     'replace_errors',
  43.     'xmlcharrefreplace_errors',
  44.     'register_error',
  45.     'lookup_error']
  46. BOM_UTF8 = '\xef\xbb\xbf'
  47. BOM_LE = BOM_UTF16_LE = '\xff\xfe'
  48. BOM_BE = BOM_UTF16_BE = '\xfe\xff'
  49. BOM_UTF32_LE = '\xff\xfe\x00\x00'
  50. BOM_UTF32_BE = '\x00\x00\xfe\xff'
  51. if sys.byteorder == 'little':
  52.     BOM = BOM_UTF16 = BOM_UTF16_LE
  53.     BOM_UTF32 = BOM_UTF32_LE
  54. else:
  55.     BOM = BOM_UTF16 = BOM_UTF16_BE
  56.     BOM_UTF32 = BOM_UTF32_BE
  57. BOM32_LE = BOM_UTF16_LE
  58. BOM32_BE = BOM_UTF16_BE
  59. BOM64_LE = BOM_UTF32_LE
  60. BOM64_BE = BOM_UTF32_BE
  61.  
  62. class Codec:
  63.     """ Defines the interface for stateless encoders/decoders.
  64.  
  65.         The .encode()/.decode() methods may use different error
  66.         handling schemes by providing the errors argument. These
  67.         string values are predefined:
  68.  
  69.          'strict' - raise a ValueError error (or a subclass)
  70.          'ignore' - ignore the character and continue with the next
  71.          'replace' - replace with a suitable replacement character;
  72.                     Python will use the official U+FFFD REPLACEMENT
  73.                     CHARACTER for the builtin Unicode codecs on
  74.                     decoding and '?' on encoding.
  75.          'xmlcharrefreplace' - Replace with the appropriate XML
  76.                                character reference (only for encoding).
  77.          'backslashreplace'  - Replace with backslashed escape sequences
  78.                                (only for encoding).
  79.  
  80.         The set of allowed values can be extended via register_error.
  81.  
  82.     """
  83.     
  84.     def encode(self, input, errors = 'strict'):
  85.         """ Encodes the object input and returns a tuple (output
  86.             object, length consumed).
  87.  
  88.             errors defines the error handling to apply. It defaults to
  89.             'strict' handling.
  90.  
  91.             The method may not store state in the Codec instance. Use
  92.             StreamCodec for codecs which have to keep state in order to
  93.             make encoding/decoding efficient.
  94.  
  95.             The encoder must be able to handle zero length input and
  96.             return an empty object of the output object type in this
  97.             situation.
  98.  
  99.         """
  100.         raise NotImplementedError
  101.  
  102.     
  103.     def decode(self, input, errors = 'strict'):
  104.         """ Decodes the object input and returns a tuple (output
  105.             object, length consumed).
  106.  
  107.             input must be an object which provides the bf_getreadbuf
  108.             buffer slot. Python strings, buffer objects and memory
  109.             mapped files are examples of objects providing this slot.
  110.  
  111.             errors defines the error handling to apply. It defaults to
  112.             'strict' handling.
  113.  
  114.             The method may not store state in the Codec instance. Use
  115.             StreamCodec for codecs which have to keep state in order to
  116.             make encoding/decoding efficient.
  117.  
  118.             The decoder must be able to handle zero length input and
  119.             return an empty object of the output object type in this
  120.             situation.
  121.  
  122.         """
  123.         raise NotImplementedError
  124.  
  125.  
  126.  
  127. class StreamWriter(Codec):
  128.     
  129.     def __init__(self, stream, errors = 'strict'):
  130.         """ Creates a StreamWriter instance.
  131.  
  132.             stream must be a file-like object open for writing
  133.             (binary) data.
  134.  
  135.             The StreamWriter may use different error handling
  136.             schemes by providing the errors keyword argument. These
  137.             parameters are predefined:
  138.  
  139.              'strict' - raise a ValueError (or a subclass)
  140.              'ignore' - ignore the character and continue with the next
  141.              'replace'- replace with a suitable replacement character
  142.              'xmlcharrefreplace' - Replace with the appropriate XML
  143.                                    character reference.
  144.              'backslashreplace'  - Replace with backslashed escape
  145.                                    sequences (only for encoding).
  146.  
  147.             The set of allowed parameter values can be extended via
  148.             register_error.
  149.         """
  150.         self.stream = stream
  151.         self.errors = errors
  152.  
  153.     
  154.     def write(self, object):
  155.         """ Writes the object's contents encoded to self.stream.
  156.         """
  157.         (data, consumed) = self.encode(object, self.errors)
  158.         self.stream.write(data)
  159.  
  160.     
  161.     def writelines(self, list):
  162.         ''' Writes the concatenated list of strings to the stream
  163.             using .write().
  164.         '''
  165.         self.write(''.join(list))
  166.  
  167.     
  168.     def reset(self):
  169.         ''' Flushes and resets the codec buffers used for keeping state.
  170.  
  171.             Calling this method should ensure that the data on the
  172.             output is put into a clean state, that allows appending
  173.             of new fresh data without having to rescan the whole
  174.             stream to recover state.
  175.  
  176.         '''
  177.         pass
  178.  
  179.     
  180.     def __getattr__(self, name, getattr = getattr):
  181.         ''' Inherit all other methods from the underlying stream.
  182.         '''
  183.         return getattr(self.stream, name)
  184.  
  185.  
  186.  
  187. class StreamReader(Codec):
  188.     
  189.     def __init__(self, stream, errors = 'strict'):
  190.         """ Creates a StreamReader instance.
  191.  
  192.             stream must be a file-like object open for reading
  193.             (binary) data.
  194.  
  195.             The StreamReader may use different error handling
  196.             schemes by providing the errors keyword argument. These
  197.             parameters are predefined:
  198.  
  199.              'strict' - raise a ValueError (or a subclass)
  200.              'ignore' - ignore the character and continue with the next
  201.              'replace'- replace with a suitable replacement character;
  202.  
  203.             The set of allowed parameter values can be extended via
  204.             register_error.
  205.         """
  206.         self.stream = stream
  207.         self.errors = errors
  208.         self.bytebuffer = ''
  209.         self.charbuffer = u''
  210.  
  211.     
  212.     def decode(self, input, errors = 'strict'):
  213.         raise NotImplementedError
  214.  
  215.     
  216.     def read(self, size = -1, chars = -1):
  217.         ''' Decodes data from the stream self.stream and returns the
  218.             resulting object.
  219.  
  220.             chars indicates the number of characters to read from the
  221.             stream. read() will never return more than chars
  222.             characters, but it might return less, if there are not enough
  223.             characters available.
  224.  
  225.             size indicates the approximate maximum number of bytes to
  226.             read from the stream for decoding purposes. The decoder
  227.             can modify this setting as appropriate. The default value
  228.             -1 indicates to read and decode as much as possible.  size
  229.             is intended to prevent having to decode huge files in one
  230.             step.
  231.  
  232.             The method should use a greedy read strategy meaning that
  233.             it should read as much data as is allowed within the
  234.             definition of the encoding and the given size, e.g.  if
  235.             optional encoding endings or state markers are available
  236.             on the stream, these should be read too.
  237.  
  238.         '''
  239.         done = False
  240.         while True:
  241.             if chars < 0:
  242.                 if self.charbuffer:
  243.                     done = True
  244.                 
  245.             elif len(self.charbuffer) >= chars:
  246.                 done = True
  247.             
  248.             if done:
  249.                 if chars < 0:
  250.                     result = self.charbuffer
  251.                     self.charbuffer = u''
  252.                     break
  253.                 else:
  254.                     result = self.charbuffer[:chars]
  255.                     self.charbuffer = self.charbuffer[chars:]
  256.                     break
  257.             
  258.             if size < 0:
  259.                 newdata = self.stream.read()
  260.             else:
  261.                 newdata = self.stream.read(size)
  262.             data = self.bytebuffer + newdata
  263.             (object, decodedbytes) = self.decode(data, self.errors)
  264.             self.bytebuffer = data[decodedbytes:]
  265.             self.charbuffer += object
  266.             if not newdata:
  267.                 done = True
  268.                 continue
  269.             self
  270.         return result
  271.  
  272.     
  273.     def readline(self, size = None, keepends = True):
  274.         ''' Read one line from the input stream and return the
  275.             decoded data.
  276.  
  277.             size, if given, is passed as size argument to the
  278.             read() method.
  279.  
  280.         '''
  281.         if size is None:
  282.             size = 10
  283.         
  284.         line = u''
  285.         while True:
  286.             data = self.read(size)
  287.             line += data
  288.             pos = line.find('\n')
  289.             if pos >= 0:
  290.                 self.charbuffer = line[pos + 1:] + self.charbuffer
  291.                 if keepends:
  292.                     line = line[:pos + 1]
  293.                 else:
  294.                     line = line[:pos]
  295.                 return line
  296.             elif not data:
  297.                 return line
  298.             
  299.             if size < 8000:
  300.                 size *= 2
  301.                 continue
  302.  
  303.     
  304.     def readlines(self, sizehint = None, keepends = True):
  305.         """ Read all lines available on the input stream
  306.             and return them as list of lines.
  307.  
  308.             Line breaks are implemented using the codec's decoder
  309.             method and are included in the list entries.
  310.  
  311.             sizehint, if given, is ignored since there is no efficient
  312.             way to finding the true end-of-line.
  313.  
  314.         """
  315.         data = self.read()
  316.         return data.splitlines(keepends)
  317.  
  318.     
  319.     def reset(self):
  320.         ''' Resets the codec buffers used for keeping state.
  321.  
  322.             Note that no stream repositioning should take place.
  323.             This method is primarily intended to be able to recover
  324.             from decoding errors.
  325.  
  326.         '''
  327.         pass
  328.  
  329.     
  330.     def next(self):
  331.         ''' Return the next decoded line from the input stream.'''
  332.         line = self.readline()
  333.         if line:
  334.             return line
  335.         
  336.         raise StopIteration
  337.  
  338.     
  339.     def __iter__(self):
  340.         return self
  341.  
  342.     
  343.     def __getattr__(self, name, getattr = getattr):
  344.         ''' Inherit all other methods from the underlying stream.
  345.         '''
  346.         return getattr(self.stream, name)
  347.  
  348.  
  349.  
  350. class StreamReaderWriter:
  351.     ''' StreamReaderWriter instances allow wrapping streams which
  352.         work in both read and write modes.
  353.  
  354.         The design is such that one can use the factory functions
  355.         returned by the codec.lookup() function to construct the
  356.         instance.
  357.  
  358.     '''
  359.     encoding = 'unknown'
  360.     
  361.     def __init__(self, stream, Reader, Writer, errors = 'strict'):
  362.         ''' Creates a StreamReaderWriter instance.
  363.  
  364.             stream must be a Stream-like object.
  365.  
  366.             Reader, Writer must be factory functions or classes
  367.             providing the StreamReader, StreamWriter interface resp.
  368.  
  369.             Error handling is done in the same way as defined for the
  370.             StreamWriter/Readers.
  371.  
  372.         '''
  373.         self.stream = stream
  374.         self.reader = Reader(stream, errors)
  375.         self.writer = Writer(stream, errors)
  376.         self.errors = errors
  377.  
  378.     
  379.     def read(self, size = -1):
  380.         return self.reader.read(size)
  381.  
  382.     
  383.     def readline(self, size = None):
  384.         return self.reader.readline(size)
  385.  
  386.     
  387.     def readlines(self, sizehint = None):
  388.         return self.reader.readlines(sizehint)
  389.  
  390.     
  391.     def next(self):
  392.         ''' Return the next decoded line from the input stream.'''
  393.         return self.reader.next()
  394.  
  395.     
  396.     def __iter__(self):
  397.         return self
  398.  
  399.     
  400.     def write(self, data):
  401.         return self.writer.write(data)
  402.  
  403.     
  404.     def writelines(self, list):
  405.         return self.writer.writelines(list)
  406.  
  407.     
  408.     def reset(self):
  409.         self.reader.reset()
  410.         self.writer.reset()
  411.  
  412.     
  413.     def __getattr__(self, name, getattr = getattr):
  414.         ''' Inherit all other methods from the underlying stream.
  415.         '''
  416.         return getattr(self.stream, name)
  417.  
  418.  
  419.  
  420. class StreamRecoder:
  421.     ''' StreamRecoder instances provide a frontend - backend
  422.         view of encoding data.
  423.  
  424.         They use the complete set of APIs returned by the
  425.         codecs.lookup() function to implement their task.
  426.  
  427.         Data written to the stream is first decoded into an
  428.         intermediate format (which is dependent on the given codec
  429.         combination) and then written to the stream using an instance
  430.         of the provided Writer class.
  431.  
  432.         In the other direction, data is read from the stream using a
  433.         Reader instance and then return encoded data to the caller.
  434.  
  435.     '''
  436.     data_encoding = 'unknown'
  437.     file_encoding = 'unknown'
  438.     
  439.     def __init__(self, stream, encode, decode, Reader, Writer, errors = 'strict'):
  440.         ''' Creates a StreamRecoder instance which implements a two-way
  441.             conversion: encode and decode work on the frontend (the
  442.             input to .read() and output of .write()) while
  443.             Reader and Writer work on the backend (reading and
  444.             writing to the stream).
  445.  
  446.             You can use these objects to do transparent direct
  447.             recodings from e.g. latin-1 to utf-8 and back.
  448.  
  449.             stream must be a file-like object.
  450.  
  451.             encode, decode must adhere to the Codec interface, Reader,
  452.             Writer must be factory functions or classes providing the
  453.             StreamReader, StreamWriter interface resp.
  454.  
  455.             encode and decode are needed for the frontend translation,
  456.             Reader and Writer for the backend translation. Unicode is
  457.             used as intermediate encoding.
  458.  
  459.             Error handling is done in the same way as defined for the
  460.             StreamWriter/Readers.
  461.  
  462.         '''
  463.         self.stream = stream
  464.         self.encode = encode
  465.         self.decode = decode
  466.         self.reader = Reader(stream, errors)
  467.         self.writer = Writer(stream, errors)
  468.         self.errors = errors
  469.  
  470.     
  471.     def read(self, size = -1):
  472.         data = self.reader.read(size)
  473.         (data, bytesencoded) = self.encode(data, self.errors)
  474.         return data
  475.  
  476.     
  477.     def readline(self, size = None):
  478.         if size is None:
  479.             data = self.reader.readline()
  480.         else:
  481.             data = self.reader.readline(size)
  482.         (data, bytesencoded) = self.encode(data, self.errors)
  483.         return data
  484.  
  485.     
  486.     def readlines(self, sizehint = None):
  487.         data = self.reader.read()
  488.         (data, bytesencoded) = self.encode(data, self.errors)
  489.         return data.splitlines(1)
  490.  
  491.     
  492.     def next(self):
  493.         ''' Return the next decoded line from the input stream.'''
  494.         return self.reader.next()
  495.  
  496.     
  497.     def __iter__(self):
  498.         return self
  499.  
  500.     
  501.     def write(self, data):
  502.         (data, bytesdecoded) = self.decode(data, self.errors)
  503.         return self.writer.write(data)
  504.  
  505.     
  506.     def writelines(self, list):
  507.         data = ''.join(list)
  508.         (data, bytesdecoded) = self.decode(data, self.errors)
  509.         return self.writer.write(data)
  510.  
  511.     
  512.     def reset(self):
  513.         self.reader.reset()
  514.         self.writer.reset()
  515.  
  516.     
  517.     def __getattr__(self, name, getattr = getattr):
  518.         ''' Inherit all other methods from the underlying stream.
  519.         '''
  520.         return getattr(self.stream, name)
  521.  
  522.  
  523.  
  524. def open(filename, mode = 'rb', encoding = None, errors = 'strict', buffering = 1):
  525.     """ Open an encoded file using the given mode and return
  526.         a wrapped version providing transparent encoding/decoding.
  527.  
  528.         Note: The wrapped version will only accept the object format
  529.         defined by the codecs, i.e. Unicode objects for most builtin
  530.         codecs. Output is also codec dependent and will usually by
  531.         Unicode as well.
  532.  
  533.         Files are always opened in binary mode, even if no binary mode
  534.         was specified. This is done to avoid data loss due to encodings
  535.         using 8-bit values. The default file mode is 'rb' meaning to
  536.         open the file in binary read mode.
  537.  
  538.         encoding specifies the encoding which is to be used for the
  539.         file.
  540.  
  541.         errors may be given to define the error handling. It defaults
  542.         to 'strict' which causes ValueErrors to be raised in case an
  543.         encoding error occurs.
  544.  
  545.         buffering has the same meaning as for the builtin open() API.
  546.         It defaults to line buffered.
  547.  
  548.         The returned wrapped file object provides an extra attribute
  549.         .encoding which allows querying the used encoding. This
  550.         attribute is only available if an encoding was specified as
  551.         parameter.
  552.  
  553.     """
  554.     if encoding is not None and 'b' not in mode:
  555.         mode = mode + 'b'
  556.     
  557.     file = __builtin__.open(filename, mode, buffering)
  558.     if encoding is None:
  559.         return file
  560.     
  561.     (e, d, sr, sw) = lookup(encoding)
  562.     srw = StreamReaderWriter(file, sr, sw, errors)
  563.     srw.encoding = encoding
  564.     return srw
  565.  
  566.  
  567. def EncodedFile(file, data_encoding, file_encoding = None, errors = 'strict'):
  568.     """ Return a wrapped version of file which provides transparent
  569.         encoding translation.
  570.  
  571.         Strings written to the wrapped file are interpreted according
  572.         to the given data_encoding and then written to the original
  573.         file as string using file_encoding. The intermediate encoding
  574.         will usually be Unicode but depends on the specified codecs.
  575.  
  576.         Strings are read from the file using file_encoding and then
  577.         passed back to the caller as string using data_encoding.
  578.  
  579.         If file_encoding is not given, it defaults to data_encoding.
  580.  
  581.         errors may be given to define the error handling. It defaults
  582.         to 'strict' which causes ValueErrors to be raised in case an
  583.         encoding error occurs.
  584.  
  585.         The returned wrapped file object provides two extra attributes
  586.         .data_encoding and .file_encoding which reflect the given
  587.         parameters of the same name. The attributes can be used for
  588.         introspection by Python programs.
  589.  
  590.     """
  591.     if file_encoding is None:
  592.         file_encoding = data_encoding
  593.     
  594.     (encode, decode) = lookup(data_encoding)[:2]
  595.     (Reader, Writer) = lookup(file_encoding)[2:]
  596.     sr = StreamRecoder(file, encode, decode, Reader, Writer, errors)
  597.     sr.data_encoding = data_encoding
  598.     sr.file_encoding = file_encoding
  599.     return sr
  600.  
  601.  
  602. def getencoder(encoding):
  603.     ''' Lookup up the codec for the given encoding and return
  604.         its encoder function.
  605.  
  606.         Raises a LookupError in case the encoding cannot be found.
  607.  
  608.     '''
  609.     return lookup(encoding)[0]
  610.  
  611.  
  612. def getdecoder(encoding):
  613.     ''' Lookup up the codec for the given encoding and return
  614.         its decoder function.
  615.  
  616.         Raises a LookupError in case the encoding cannot be found.
  617.  
  618.     '''
  619.     return lookup(encoding)[1]
  620.  
  621.  
  622. def getreader(encoding):
  623.     ''' Lookup up the codec for the given encoding and return
  624.         its StreamReader class or factory function.
  625.  
  626.         Raises a LookupError in case the encoding cannot be found.
  627.  
  628.     '''
  629.     return lookup(encoding)[2]
  630.  
  631.  
  632. def getwriter(encoding):
  633.     ''' Lookup up the codec for the given encoding and return
  634.         its StreamWriter class or factory function.
  635.  
  636.         Raises a LookupError in case the encoding cannot be found.
  637.  
  638.     '''
  639.     return lookup(encoding)[3]
  640.  
  641.  
  642. def make_identity_dict(rng):
  643.     ''' make_identity_dict(rng) -> dict
  644.  
  645.         Return a dictionary where elements of the rng sequence are
  646.         mapped to themselves.
  647.  
  648.     '''
  649.     res = { }
  650.     for i in rng:
  651.         res[i] = i
  652.     
  653.     return res
  654.  
  655.  
  656. def make_encoding_map(decoding_map):
  657.     ''' Creates an encoding map from a decoding map.
  658.  
  659.         If a target mapping in the decoding map occurs multiple
  660.         times, then that target is mapped to None (undefined mapping),
  661.         causing an exception when encountered by the charmap codec
  662.         during translation.
  663.  
  664.         One example where this happens is cp875.py which decodes
  665.         multiple character to \\u001a.
  666.  
  667.     '''
  668.     m = { }
  669.     for k, v in decoding_map.items():
  670.         if v not in m:
  671.             m[v] = k
  672.             continue
  673.         m[v] = None
  674.     
  675.     return m
  676.  
  677. strict_errors = lookup_error('strict')
  678. ignore_errors = lookup_error('ignore')
  679. replace_errors = lookup_error('replace')
  680. xmlcharrefreplace_errors = lookup_error('xmlcharrefreplace')
  681. backslashreplace_errors = lookup_error('backslashreplace')
  682. _false = 0
  683. if _false:
  684.     import encodings
  685.  
  686. if __name__ == '__main__':
  687.     sys.stdout = EncodedFile(sys.stdout, 'latin-1', 'utf-8')
  688.     sys.stdin = EncodedFile(sys.stdin, 'utf-8', 'latin-1')
  689.  
  690.